import React from 'react' import { getLocaleOnServer } from '@/i18n/server' import { useTranslation } from '@/i18n/i18next-serverside-config' import Form from '@/app/components/datasets/settings/form' const Settings = async () => { const locale = getLocaleOnServer() const { t } = await useTranslation(locale, 'dataset-settings') return (